MyNixOS website logo
option

<imports = [ pkgs.php.services.default ]>.php-fpm.package

PHP package to use for php-fpm.

Declarations
Type
package
Default
{
  _type = "literalMD";
  text = "The PHP package that provided this module.";
}
Example
php.buildEnv {
  extensions =
    { all, ... }:
    with all;
    [
      imagick
      opcache
    ];
  extraConfig = "memory_limit=256M";
}